home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 3: The Continuation
/
17-Bit_The_Continuation_Disc.iso
/
amigan
/
amigan 9
/
automata
/
source
/
ammenu.def
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Modula Definition
|
1994-01-27
|
573 b
|
21 lines
DEFINITION MODULE AMMenu;
(* AMMenu prepares the menu and does all menu functions for Automata.
Version 2.0a by Mike Dryja February 21, 1987 *)
TYPE
ToggleChoices = (Disable, Enable, Pause, Resume);
(* Four possible choices for the Toggle procedure *)
PROCEDURE InitMenu ();
(* Initialize the menu for the Automata program. *)
PROCEDURE Toggle (Choice : ToggleChoices);
(* According to Choice, either enables or disables the Pause/Resume item
from the Project menu, or changes the wording to Pause or Resume *)
END AMMenu.